home *** CD-ROM | disk | FTP | other *** search
/ APDL Other Worlds / APDL Other Worlds Collection.iso / SF3000 / Extras / !FednetCmp / h / Main < prev    next >
Encoding:
Text File  |  2003-11-06  |  443 b   |  22 lines

  1. /*
  2.  *  FednetCmp - Fednet file compression/decompression
  3.  *  Main application skeleton
  4.  *  Copyright (C) 2001  Chris Bazley
  5.  */
  6.  
  7. #ifndef FNCMain_h
  8. #define FNCMain_h
  9.  
  10. #include <stdbool.h>
  11. #include "kernel.h"
  12. #include "toolbox.h"
  13.  
  14. extern _kernel_oserror shared_err_block;
  15. extern char taskname[32];
  16. extern bool multi_saveboxes;
  17. extern ObjectId last_savebox;
  18. extern const int fednet_filetypes[11];
  19.  
  20. extern int main(int argc, char *argv[]);
  21. #endif
  22.